@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background-color: #102237;
    color: #333;
    line-height: 1.6;
  }
  
 /* barra de navegação */
 .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 30px;
    background-color: #ffffff;
    color: #0B4E9A;
    border-bottom: 10px solid #0b4e9a;
  }

  .navbar-left{
    display: flex;
  }

  .navbar-center{
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  .navbar-center h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .navbar-center p {
    color: #333333;
    margin: 0;
    font-size: 20px;
  }
  
  .navbar-right .contact-link {
    color: #0B4E9A;
    text-decoration: none;
    font-size: 1em;
  }
  
  .navbar-right .contact-link:hover {
    text-decoration: underline;
  }

  .navbar img{
    width: 16rem;
    height: auto;
  }

  .navbar-right p{
    font-size: 1.3rem;
    margin: 4px;
  }

  .fone{
    font-size: 1.4rem;
    text-align: center;
  }
  
  section {
    padding: 5px 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: left;
    gap: 5rem;
  }

  .img-set{
    text-align: center;
  }
  
  section img {
    max-width: 27rem;
    height: auto;
    margin-bottom: 30px;
  }
  
  section h2 {
    font-size: 26px;
    color: #0071f1;
    margin-bottom: 15px;
  }
  
  section p {
    color: #333333;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
  }
  
  .cta-buttons{
    text-align: center;
  }

  .cta-buttons a {
    display: inline-block;
    margin: 0;
    padding: 10px 28px;
    background-color: #004f9e;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.315);
  }
  
  .cta-buttons a:hover {
    background-color: #003b75;
  }
  
  footer {
    background-color: #064081;
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #ffffff;
  }

  @media (max-width: 1000px) {
    .navbar {
      flex-direction: column;
      padding: 10px 10px;
  }
  
  .navbar img {
    width: 20rem;
    height: auto;
}

  .navbar-center h1 {
      margin: 6px;
      font-size: 1.2rem;
  }

  .navbar-center p {
    display: none; 
}
  
  .navbar-right{
      display: none; 
  }
  
  section {
      padding: 30px 30px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: space-around;
      text-align: center;
      gap: 0rem;
      flex-direction: column;
  }
  
  section img {
      max-width: 17rem;
      height: auto;
      margin-bottom: 10px;
  }
  
  footer {
      background-color: #064081;
      text-align: center;
      padding: 30px;
      font-size: 15px;
      color: #ffffff;
  }
}
  